labelsHidden
Hides the labels of controls (e.g. Picker
, DatePicker
) contained within the view. The controls remain visible and functional.
Type
Example
1<Picker
2 title="Picker"
3 labelsHidden={true}
4 value={value}
5 onChanged={onChanged}
6>
7 <Text tag={0}>Option 1</Text>
8 <Text tag={1}>Option 2</Text>
9</Picker>